type net/http.http2stream

28 uses

	net/http (current package)
		h2_bundle.go#L4423: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4604: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4655: type http2stream struct {
		h2_bundle.go#L4691: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L5149: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L5695: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5945: func (st *http2stream) isPushed() bool {
		h2_bundle.go#L5951: func (st *http2stream) endStream() {
		h2_bundle.go#L5967: func (st *http2stream) copyTrailersToHandlerRequest() {
		h2_bundle.go#L5978: func (st *http2stream) onReadTimeout() {
		h2_bundle.go#L5988: func (st *http2stream) onWriteTimeout() {
		h2_bundle.go#L6131: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L6180: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L6187: 	st := &http2stream{
		h2_bundle.go#L6216: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6285: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp httpcommon.ServerRequestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L6321: func (sc *http2serverConn) newResponseWriter(st *http2stream, req *Request) *http2responseWriter {
		h2_bundle.go#L6428: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L6460: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L6470: 	st *http2stream
		h2_bundle.go#L6477: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L6487: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L6498: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L6503: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L6526: 	stream        *http2stream
		h2_bundle.go#L6581: 	stream *http2stream
		h2_bundle.go#L7152: 	parent *http2stream
		h2_bundle.go#L11176: 	stream *http2stream